github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/tests/manual_testing/many controls/queries/q14.sql (about)

     1  select
     2      -- Required Columns
     3      arn as resource,
     4      case
     5          when default_root_object = '' then 'alarm'
     6          else 'ok'
     7          end as status,
     8      case
     9          when default_root_object = '' then title || ' default root object not configured.'
    10          else title || ' default root object configured.'
    11          end as reason,
    12      -- Additional Dimensions
    13      region,
    14      account_id
    15  from
    16      aws_cloudfront_distribution;